Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / authentication / flows / {flowAlias} / executions

Path parameters:
realm - realm name (not id!)
flowAlias -

Sub-Resources
Resources
NameDescription
execution
flow

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/authentication/flows/{flowAlias}/executions 
PUT /admin/realms/{realm}/authentication/flows/{flowAlias}/executions 

Method Detail

GET /admin/realms/{realm}/authentication/flows/{flowAlias}/executions

HTTP Example:
GET /admin/realms/{realm}/authentication/flows/{flowAlias}/executions
API Example:

AuthenticationManagementResource.getExecutions({'realm': /* name realm name (not id!) */,
  'flowAlias': …});

Output:
Response
Produces:
application/json

PUT /admin/realms/{realm}/authentication/flows/{flowAlias}/executions

HTTP Example:
PUT /admin/realms/{realm}/authentication/flows/{flowAlias}/executions
API Example:

AuthenticationManagementResource.updateExecutions({'realm': /* name realm name (not id!) */,
  'flowAlias': …,
  '$entity': …});

Input:
AuthenticationExecutionRepresentation
Output:
void
Consumes:
application/json

Keycloak REST Services 1.5.0-Final